home *** CD-ROM | disk | FTP | other *** search
/ EuroCD 3 / EuroCD 3.iso / Emulators / v2600 / Source.lha / Source / no_ui.c < prev    next >
C/C++ Source or Header  |  1997-01-27  |  829b  |  38 lines

  1.  
  2. /*****************************************************************************
  3.  
  4.    This file is part of x2600, the Atari 2600 Emulator
  5.    ===================================================
  6.    
  7.    Copyright 1996 Alex Hornby. For contributions see the file CREDITS.
  8.  
  9.    This software is distributed under the terms of the GNU General Public
  10.    License. This is free software with ABSOLUTELY NO WARRANTY.
  11.    
  12.    See the file COPYING for details.
  13.    
  14.    $Id: no_ui.c,v 1.3 1996/11/24 16:55:40 ahornby Exp $
  15. ******************************************************************************/
  16.  
  17. /*
  18.    User Interface (UI) prototypes for those without FWF etc.
  19.  */
  20. #include "config.h"
  21.  
  22. #if HAVE_LIBXT
  23. #include <X11/Intrinsic.h>
  24. #else 
  25. typedef int Widget;
  26. #endif
  27.  
  28. void 
  29. fancy_widgets (Widget parent)
  30. {
  31. }
  32.  
  33. int
  34. fselLoad (void)
  35. {
  36.   return 0;
  37. }
  38.